home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C12 / Microsoft.makefile < prev    next >
Encoding:
Makefile  |  2000-05-25  |  3.1 KB  |  145 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C12
  7. # using the Microsoft compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f Microsoft.makefile
  11.  
  12. # Note: this requires the service Pack 3 from
  13. # www.Microsoft.com for successful compilation!
  14. CPP = cl
  15. CPPFLAGS = -GX -GR
  16. OFLAG = -o
  17. .SUFFIXES : .obj .cpp .c
  18. .cpp.obj :
  19.     $(CPP) $(CPPFLAGS) -c $<
  20. .c.obj :
  21.     $(CPP) $(CPPFLAGS) -c $<
  22.  
  23. all: \
  24.     Opover.exe \
  25.     Unary.exe \
  26.     Binary.exe \
  27.     FeeFi.exe \
  28.     Simpcopy.exe \
  29.     Autoeq.exe \
  30.     Autocnst.exe \
  31.     Opconv.exe \
  32.     Reflex.exe \
  33.     Strings1.exe \
  34.     Strings2.exe \
  35.     Ambig.exe \
  36.     Fanout.exe \
  37.     FeeFi2.exe 
  38.  
  39. test: all 
  40.     Opover.exe  
  41.     Unary.exe  
  42.     Binary.exe  
  43.     FeeFi.exe  
  44.     Simpcopy.exe  
  45.     Autoeq.exe  
  46.     Autocnst.exe  
  47.     Opconv.exe  
  48.     Reflex.exe  
  49.     Strings1.exe  
  50.     Strings2.exe  
  51.     Ambig.exe  
  52.     Fanout.exe  
  53.     FeeFi2.exe  
  54.  
  55. bugs: \
  56.     Comma.exe \
  57.     Smartp.exe \
  58.     Iosop.exe \
  59.     Copymem.exe \
  60.     Refcount.exe \
  61.     RefcountTrace.exe 
  62.  
  63. Opover.exe: Opover.obj 
  64.     $(CPP) $(OFLAG)Opover.exe Opover.obj 
  65.  
  66. Unary.exe: Unary.obj 
  67.     $(CPP) $(OFLAG)Unary.exe Unary.obj 
  68.  
  69. Binary.exe: Binary.obj 
  70.     $(CPP) $(OFLAG)Binary.exe Binary.obj 
  71.  
  72. Comma.exe: Comma.obj 
  73.     $(CPP) $(OFLAG)Comma.exe Comma.obj 
  74.  
  75. Smartp.exe: Smartp.obj 
  76.     $(CPP) $(OFLAG)Smartp.exe Smartp.obj 
  77.  
  78. Iosop.exe: Iosop.obj 
  79.     $(CPP) $(OFLAG)Iosop.exe Iosop.obj 
  80.  
  81. FeeFi.exe: FeeFi.obj 
  82.     $(CPP) $(OFLAG)FeeFi.exe FeeFi.obj 
  83.  
  84. Simpcopy.exe: Simpcopy.obj 
  85.     $(CPP) $(OFLAG)Simpcopy.exe Simpcopy.obj 
  86.  
  87. Copymem.exe: Copymem.obj 
  88.     $(CPP) $(OFLAG)Copymem.exe Copymem.obj 
  89.  
  90. Refcount.exe: Refcount.obj 
  91.     $(CPP) $(OFLAG)Refcount.exe Refcount.obj 
  92.  
  93. RefcountTrace.exe: RefcountTrace.obj 
  94.     $(CPP) $(OFLAG)RefcountTrace.exe RefcountTrace.obj 
  95.  
  96. Autoeq.exe: Autoeq.obj 
  97.     $(CPP) $(OFLAG)Autoeq.exe Autoeq.obj 
  98.  
  99. Autocnst.exe: Autocnst.obj 
  100.     $(CPP) $(OFLAG)Autocnst.exe Autocnst.obj 
  101.  
  102. Opconv.exe: Opconv.obj 
  103.     $(CPP) $(OFLAG)Opconv.exe Opconv.obj 
  104.  
  105. Reflex.exe: Reflex.obj 
  106.     $(CPP) $(OFLAG)Reflex.exe Reflex.obj 
  107.  
  108. Strings1.exe: Strings1.obj 
  109.     $(CPP) $(OFLAG)Strings1.exe Strings1.obj 
  110.  
  111. Strings2.exe: Strings2.obj 
  112.     $(CPP) $(OFLAG)Strings2.exe Strings2.obj 
  113.  
  114. Ambig.exe: Ambig.obj 
  115.     $(CPP) $(OFLAG)Ambig.exe Ambig.obj 
  116.  
  117. Fanout.exe: Fanout.obj 
  118.     $(CPP) $(OFLAG)Fanout.exe Fanout.obj 
  119.  
  120. FeeFi2.exe: FeeFi2.obj 
  121.     $(CPP) $(OFLAG)FeeFi2.exe FeeFi2.obj 
  122.  
  123.  
  124. Opover.obj: Opover.cpp 
  125. Unary.obj: Unary.cpp 
  126. Binary.obj: Binary.cpp ..\require.h 
  127. Comma.obj: Comma.cpp 
  128. Smartp.obj: Smartp.cpp 
  129. Iosop.obj: Iosop.cpp ..\require.h 
  130. FeeFi.obj: FeeFi.cpp 
  131. Simpcopy.obj: Simpcopy.cpp 
  132. Copymem.obj: Copymem.cpp ..\require.h 
  133. Refcount.obj: Refcount.cpp ..\require.h 
  134. RefcountTrace.obj: RefcountTrace.cpp ..\require.h 
  135. Autoeq.obj: Autoeq.cpp 
  136. Autocnst.obj: Autocnst.cpp 
  137. Opconv.obj: Opconv.cpp 
  138. Reflex.obj: Reflex.cpp 
  139. Strings1.obj: Strings1.cpp ..\require.h 
  140. Strings2.obj: Strings2.cpp ..\require.h 
  141. Ambig.obj: Ambig.cpp 
  142. Fanout.obj: Fanout.cpp 
  143. FeeFi2.obj: FeeFi2.cpp 
  144.  
  145.